# Get move history

Returns the historical record of location moves for the specified employee within the current account context.
            
Behavior:
- Validates employee association with the account
- Retrieves chronological move history records
- Includes previous and new location details for each move
- Returns rollback-related information if applicable
- Logs the action as an employee move history view event

Endpoint: GET /api/v1/portfolio/employees/{employeeId}/moves

## Path parameters:

  - `employeeId` (string, required)

## Response 200 fields (text/plain):

  - `data` (object)

  - `data.employeeIdentifier` (string)

  - `data.employeeName` (string,null)

  - `data.employeeLocations` (array,null)

  - `data.employeeLocations.location` (string,null)

  - `data.employeeLocations.locationId` (string,null)

  - `data.employeeLocations.building` (string,null)

  - `data.employeeLocations.buildingId` (string,null)

  - `data.employeeLocations.level` (string,null)

  - `data.employeeLocations.levelId` (string,null)

  - `data.employeeLocations.room` (string,null)

  - `data.employeeLocations.roomId` (string,null)

  - `data.employeeLocations.workspace` (string,null)

  - `data.employeeLocations.workspaceId` (string,null)

  - `data.employeeLocations.spaceKey` (string,null)

  - `data.employeeLocations.spaceAssignedOn` (string,null)

  - `data.employeeLocations.spaceCategory` (object)

  - `data.employeeLocations.spaceCategory.spaceCategoryId` (string)

  - `data.employeeLocations.spaceCategory.spaceCategoryName` (string,null)

  - `data.employeeLocations.spaceCategory.spaceCategoryCode` (string,null)

  - `data.employeeLocations.roomFunction` (object)

  - `data.employeeLocations.roomFunction.roomFunctionId` (string)

  - `data.employeeLocations.roomFunction.roomFunctionName` (string,null)

  - `data.employeeLocations.spaceArea` (number,null)

  - `data.employeeLocations.levelPlanHandle` (string,null)

  - `data.employeeLocations.employeeLocationId` (string,null)

  - `data.employeeLocations.rollBackInfo` (object)

  - `data.employeeLocations.rollBackInfo.isRollBack` (boolean)

  - `data.employeeLocations.rollBackInfo.rollBackType` (string,null)

  - `data.employeeLocations.rollBackInfo.employeeLocationId` (string)

  - `data.employeeLocations.rollBackInfo.comments` (string,null)

  - `data.employeeLocations.levelPlanId` (string,null)

  - `data.employeeLocations.planFile` (object)

  - `data.employeeLocations.planFile.fileId` (string)

  - `data.employeeLocations.planFile.fileName` (string,null)

  - `data.employeeLocations.planFile.fileSize` (string,null)

  - `data.employeeLocations.planFile.currentRevisionNumber` (integer)

  - `data.employeeLocations.planFile.createdOn` (string,null)

  - `data.employeeLocations.planFile.fileSizeInBytes` (integer)

  - `data.employeeLocations.planFile.createdDate` (string)

  - `data.employeeLocations.planFile.createdBy` (string,null)

  - `data.employeeLocations.planFile.isLatest` (boolean)

  - `data.employeeLocations.cadPlanCoordinates` (array,null)

  - `data.employeeLocations.spaceAssignedOnDateTimeFormat` (string,null)

  - `data.employeeLocations.svgPlanAdded` (boolean)

  - `data.responseDescription` (string,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


